home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
BadVolumeNameError.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
312b
|
21 lines
// BadVolumeNameError.h
#ifndef BadVolumeNameError_h
#define BadVolumeNameError_h
#ifndef VolumeError_h
#include "VolumeError.h"
#endif
#include <Errors.h>
class BadVolumeNameError: public VolumeError
{
public:
BadVolumeNameError( OSErr error = bdNamErr )
: VolumeError( error )
{}
};
#endif